home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / qwindows.arc / QWINDOWS.DOC < prev    next >
Encoding:
Text File  |  1987-05-06  |  1.8 KB  |  32 lines

  1.           QWINDOWS.COM by Bob Montgomery, 5-6-87
  2.  
  3. This collection of files is a user library of assembly language 
  4. window subroutines for Quick Basic ver 2.0 up. The files are:
  5.  
  6.      GETSCRN.8      Source for GETSCRN.OBJ
  7.      GETSCRN.OBJ    Subroutine to restore a previously saved screen
  8.      MAKSND.8       Source for MAKSND.OBJ
  9.      MAKSND.OBJ     Subroutine for making a poping sound
  10.      SAVESCRN.8     Source for SAVESCRN.OBJ
  11.      SAVESCRN.OBJ   Subroutine for saving screen contents to an array
  12.      WINDOW.8       Source for WINDOW.OBJ
  13.      WINDOW.OBJ     Subroutine to make a window on the screen
  14.      WINDLIB.EXE    Window library of above 4 OBJ files
  15.      WINDTST.BAS    Demo window program-use WINDLOAD.BAT to execute
  16.      WINDTST.EXE    Compiled window demo-uses BRUN.EXE
  17.      WINDLOAD.BAT   Runs QB of WINDTST.BAS with WINDLIB.EXE
  18.      WINDLIBB.BAT   Builds the 4 OBJ files into WINDLIB.EXE
  19.  
  20. To run the demo, use WINDLOAD.BAT which will run QB on WINDTST.BAS 
  21. using the window subroutine library WINDLIB.EXE. The source files are 
  22. in A86 assembler format and can be converted to MASM format (although 
  23. I can't imagine why you would do this) by adding all the ASSUME, 
  24. SEGMENT, ENDS, etc nonsense assembler directives. A86 is a shareware 
  25. macro assembler with such outstanding features that I never use MASM 
  26. anymore; it produces a COM file directly unless instructed otherwise, 
  27. and gets rid of all the 'red tape' assembler directives. Try it, I 
  28. think you'll like it. The A86 documentation, although sparse, is very 
  29. instuctive, and explains why some of the directives are there (in 
  30. MASM), and why they aren't needed.
  31.  
  32. Enjoy, Bob Montgomery